/* HERO SECTION */
.dr1055heroprojs {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: system-ui, -apple-system, sans-serif;
}

/* BACKGROUND IMAGE */
.dr1055heroprojs .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 1.2s ease;
}

/* OVERLAY */
.dr1055heroprojs .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 2;
}

/* HERO CONTENT */
.dr1055heroprojs .hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
    transform: translateY(40px);
}

.dr1055heroprojs h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00ffd5, #00c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dr1055heroprojs p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.dr1055heroprojs .hero-cta {
    display: inline-block;
    padding: 16px 36px;
    font-weight: 700;
    font-size: 16px;
    color: #02141a;
    background: linear-gradient(135deg, #00ffd5, #00c8ff);
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.dr1055heroprojs .hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 255, 213, 0.5);
}

/* ANIMATION */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PARALLAX EFFECT FOR BG */
.dr1055heroprojs.parallax .hero-bg {
    will-change: transform;
}

/* ===============================
RESPONSIVE
=============================== */
@media (max-width: 1200px) {
    .dr1055heroprojs h1 {
        font-size: 48px;
    }
    .dr1055heroprojs p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .dr1055heroprojs h1 {
        font-size: 36px;
    }
    .dr1055heroprojs p {
        font-size: 16px;
    }
    .dr1055heroprojs .hero-cta {
        padding: 12px 28px;
        font-size: 14px;
    }
}