.page-header {
    display: none;
}

.sidebar {
    display: none;
}

.container-fluid>.content {
    margin-left: 0;
}

.container-fluid {
    padding: 0;
}


/* ===== HERO SECTION ===== */

.hero {
    width: 100%;
    padding: 80px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: #0f0f0f; */
    /* color: #fff; */
    min-height: 75vh;
}

.hero-left {
    max-width: 50%;
}

.intro {
    font-size: 1.3rem;
    opacity: 0.9;
}

.name {
    color: #4675b8;
    font-weight: 700;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin: 10px 0 20px;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.8;
    max-width: 85%;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.25s ease;
}

.btn.primary {
    background: #4675b8;
    color: #fff;
}

.btn.primary:hover {
    background: #4675b8;
}

.btn.secondary {
    border: 2px solid #4675b8;
    color: #4675b8;
}

.btn.secondary:hover {
    background: #4675b8;
    color: #fff;
}

/* ===== RIGHT SIDE IMAGE ===== */

.hero-right {
    position: relative;
    width: 40%;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 85%;
    max-width: 380px;
    filter: drop-shadow(0 0 25px #4675b8);
    animation: float 4s ease-in-out infinite;
}

.hero-img {
    border: 0px solid #4675b8;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .hero-left {
        max-width: 100%;
    }
    .hero-right {
        margin-top: 40px;
        width: 100%;
    }
}
