.dr1056herobrochures {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* ===============================
   BACKGROUND SLIDER
=============================== */
.dr1056herobrochures .dr1056hero-bg-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dr1056herobrochures .dr1056hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 6s ease;
}

.dr1056herobrochures .dr1056hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* ===============================
   CONTENT (LEFT ALIGNED)
=============================== */
.dr1056herobrochures .dr1056hero-content {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    max-width: 700px;
    margin-left: 8%;
    padding: 0;

    color: #fff;
}

/* ===============================
   HEADING
=============================== */
.dr1056herobrochures h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;

    text-shadow: 0 4px 20px rgba(0,0,0,0.6);

    animation: dr1056fadeUp 1s ease;
}

/* ===============================
   TEXT
=============================== */
.dr1056herobrochures p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;

    color: rgba(255,255,255,0.9);

    text-shadow: 0 3px 15px rgba(0,0,0,0.5);

    animation: dr1056fadeUp 1.3s ease;
}

/* ===============================
   BUTTONS
=============================== */
.dr1056herobrochures .dr1056hero-buttons {
    display: flex;
    gap: 15px;

    animation: dr1056fadeUp 1.6s ease;
}

.dr1056herobrochures .dr1056btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* PRIMARY BUTTON */
.dr1056herobrochures .dr1056btn.primary {
    background: linear-gradient(45deg, #ff7a18, #ff3d00);
    color: #fff;
}

.dr1056herobrochures .dr1056btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 100, 0, 0.4);
}

/* SECONDARY BUTTON */
.dr1056herobrochures .dr1056btn.secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.dr1056herobrochures .dr1056btn.secondary:hover {
    background: rgba(255,255,255,0.25);
}

/* ===============================
   ANIMATION
=============================== */
@keyframes dr1056fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {

    .dr1056herobrochures {
        padding: 20px;
    }

    .dr1056herobrochures .dr1056hero-content {
        margin-left: 0;
        max-width: 100%;
    }

    .dr1056herobrochures h1 {
        font-size: 32px;
    }

    .dr1056herobrochures p {
        font-size: 16px;
    }
}