/* ===== HERO BASE ===== */
.dr1056hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

/* ===== CONTAINER ===== */
.dr1056hero .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
}

/* ===== TEXT ===== */
.dr1056hero .hero-content {
    flex: 1;
    z-index: 2;
    animation: dr1056hero_fadeUp 1.2s ease;
}

.dr1056hero .hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg,#ff8a00,#e52e71,#00f2fe);
    -webkit-background-clip: text;
    color: transparent;
}

.dr1056hero .hero-sub {
    margin-top: 20px;
    font-size: 18px;
    color: #ccc;
    max-width: 500px;
}

/* ===== CTA BUTTONS ===== */
.dr1056hero .hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dr1056hero .btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
}

.dr1056hero .primary-btn {
    background: linear-gradient(45deg,#00f2fe,#4facfe);
    color: #000;
    box-shadow: 0 10px 30px rgba(0,242,254,0.4);
}

.dr1056hero .secondary-btn {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    backdrop-filter: blur(10px);
}

.dr1056hero .btn:hover {
    transform: translateY(-5px) scale(1.05);
}

/* ===== IMAGE ===== */
.dr1056hero .hero-image {
    flex: 1;
    perspective: 1000px;
}

.dr1056hero .hero-image img {
    width: 100%;
    border-radius: 20px;
    transform: rotateY(-10deg);
    transition: 0.5s;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.dr1056hero .hero-image img:hover {
    transform: rotateY(0deg) scale(1.05);
}

/* ===== ORBS ===== */
.dr1056hero .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: dr1056hero_float 10s infinite alternate ease-in-out;
}

.dr1056hero .orb1 {
    width: 300px;
    height: 300px;
    background: #ff00cc;
    top: 10%;
    left: 10%;
}

.dr1056hero .orb2 {
    width: 250px;
    height: 250px;
    background: #00f2fe;
    bottom: 10%;
    right: 10%;
}

/* ===== ANIMATION ===== */
@keyframes dr1056hero_fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dr1056hero_float {
    from { transform: translateY(0); }
    to { transform: translateY(-40px); }
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

    .dr1056hero {
        padding: 100px 16px 40px;
    }

    .dr1056hero .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .dr1056hero .hero-title {
        font-size: 34px;
    }

    .dr1056hero .hero-sub {
        font-size: 15px;
        max-width: 100%;
    }

    /* 🔥 CTA PERFECT CENTER */
    .dr1056hero .hero-cta {
        justify-content: center;
        align-items: center;
        flex-direction: column; /* stack nicely */
        gap: 12px;
    }

    .dr1056hero .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* IMAGE FIX */
    .dr1056hero .hero-image img {
        transform: none;
    }

    /* ORBS SMALLER */
    .dr1056hero .orb1 {
        width: 180px;
        height: 180px;
    }

    .dr1056hero .orb2 {
        width: 150px;
        height: 150px;
    }
}